projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c06583e
)
* fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
author
Ken Raeburn
<raeburn@raeburn.org>
Mon, 20 May 2002 08:05:48 +0000
(08:05 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Mon, 20 May 2002 08:05:48 +0000
(08:05 +0000)
instead of XSYMBOL and name field.
src/fontset.c
patch
|
blob
|
history
diff --git
a/src/fontset.c
b/src/fontset.c
index 6679b1f728fb1fae4f9b17d44133460a3d70ea9e..b79010e7bc22e3740036fc67bae86a66679950ee 100644
(file)
--- a/
src/fontset.c
+++ b/
src/fontset.c
@@
-1013,7
+1013,7
@@
name of a font, REGISTRY is a registry name of a font. */)
{
elt = Fget (character, Qcharset);
if (!VECTORP (elt) || ASIZE (elt) < 1 || !NATNUMP (AREF (elt, 0)))
- error ("Invalid charset: %s", (XS
YMBOL (character)->name
)->data);
+ error ("Invalid charset: %s", (XS
TRING (SYMBOL_NAME (character))
)->data);
from = MAKE_CHAR (XINT (AREF (elt, 0)), 0, 0);
to = from;
}